+2007-12-28 Matthias Clasen <mclasen@redhat.com>
+
+ * gtk/gtkfilesel.c:
+ * gtk/gtklabel.c:
+ * gtk/gtklinkbutton.c:
+ * gtk/gtkmenu.c: More default property value corrections.
+
2007-12-28 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkitemfactory.c (gtk_item_factory_finalize): Don't unref
g_param_spec_boolean ("show-fileops",
P_("Show file operations"),
P_("Whether buttons for creating/manipulating files should be displayed"),
- FALSE,
+ TRUE,
GTK_PARAM_READWRITE));
g_object_class_install_property (gobject_class,
PROP_SELECT_MULTIPLE,
g_param_spec_string ("label",
P_("Label"),
P_("The text of the label"),
- NULL,
+ "",
GTK_PARAM_READWRITE));
g_object_class_install_property (gobject_class,
PROP_ATTRIBUTES,
/**
* GtkLinkButton:uri
*
- * The URI bound to this button.
+ * The URI bound to this button.
*
* Since: 2.10
*/
g_param_spec_string ("uri",
_("URI"),
_("The URI bound to this button"),
- "http://www.gtk.org",
+ NULL,
G_PARAM_READWRITE));
g_type_class_add_private (gobject_class, sizeof (GtkLinkButtonPrivate));
g_param_spec_string ("tearoff-title",
P_("Tearoff Title"),
P_("A title that may be displayed by the window manager when this menu is torn-off"),
- "",
+ NULL,
GTK_PARAM_READWRITE));
/**